home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / GCC 1.37.1r14 / usr / gcc-1.37.1r14 / object oriented files / CAboutDirector.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-06  |  716 b   |  34 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  CAboutDirector.h
  3.  
  4.         
  5.     SUPERCLASS = CDLOGDirector
  6.     
  7.     Copyright © 1991 Symantec Corporation. All rights reserved.
  8.     
  9.     TCL 1.1.3 Changes
  10.     [
  11.         - use pragma once
  12.         - changed forward declarations of CStringArray, CStringTable, and CDialogText
  13.     ]
  14.  ******************************************************************************/
  15.  
  16. #pragma once
  17.  
  18. #include <CStyleText.h>
  19. #include <CDLOGDirector.h>
  20.  
  21. class CAboutDirector : public CDLOGDirector
  22. {
  23.  
  24. public:
  25.  
  26.     CStyleText        *itsMainPane;
  27.     
  28.     void IAboutDirector( short DLOGid, CDirectorOwner *aSupervisor);    
  29.     
  30.     virtual void Dispose( void);
  31.     virtual void DoCommand( long theCommand);
  32.     
  33.     Handle    itsData;
  34. };